home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / pcgames / EMERGY / BC5 / EXAMPLES / OWL / TASKS / ISAPIEXT / readme.txt
Text File  |  1997-03-25  |  1KB  |  45 lines

  1. Copyright Borland International
  2. ObjectWindows (C) 1997
  3.  
  4. Title: ISAPI Extension Example
  5.  
  6. Keywords: ISAPI HTTP internet server extensions
  7.  
  8. ISAPI lets you write interactive web pages without the high overhead
  9. that CGI imposes.  CGI starts a new process for each client, but ISAPI
  10. does not.
  11.  
  12. ISAPI extensions are implemented in DLLs.  This example project
  13. produces a DLL called SimpleEx (simple extension.)  To see the DLL
  14. work, you need a web server.  Consult your web server documentation
  15. for details about installing ISAPI extensions.  Typically, however, 
  16. you simply copy the DLL to the directory where the server expects 
  17. extensions, restart the server, and then use the name of the DLL in
  18. a URL, for example:
  19.  
  20.   http://myserver/scripts/SimpleEx.dll
  21.  
  22. The example includes the following files:
  23.  
  24.   ISAPIEXT.CPP          reusable OWL classes for creating
  25.   ISAPIEXT.H            ISAPI server extensions
  26.  
  27.   ISAPISTR.H            additional classes for ISAPI streams
  28.  
  29.   SIMPLEEX.CPP          the code for a server extension
  30.                         built from the classes in ISAPIEXT
  31.  
  32.   SIMPLEEX.IDE          for building from the IDE
  33.   MAKEFILE              for building from the command line
  34.  
  35. This example was written by Michael Sawczyn.
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.